| Conditions | 1 |
| Total Lines | 5 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | import {MigrationInterface, QueryRunner} from "typeorm"; |
||
| 11 | |||
| 12 | public async down(queryRunner: QueryRunner): Promise<void> { |
||
| 13 | await queryRunner.query(`ALTER TABLE "event" DROP CONSTRAINT "FK_b433cf0b27b9d6ec873f07203dd"`); |
||
| 14 | await queryRunner.query(`ALTER TABLE "event" DROP CONSTRAINT "FK_e4d1b1384d9f0d65a116523f8bd"`); |
||
| 15 | await queryRunner.query(`DROP TABLE "event"`); |
||
| 16 | } |
||
| 19 |